From: Richard M. Stallman Date: Wed, 28 Jul 1993 08:18:09 +0000 (+0000) Subject: (make_hdr): Use & in call to bzero. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~94741 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=a5fd213fe1d4a846cbcf286aa2d67791034578c8;p=emacs.git (make_hdr): Use & in call to bzero. --- diff --git a/src/unexec.c b/src/unexec.c index d14103f1dd5..74e459a302e 100644 --- a/src/unexec.c +++ b/src/unexec.c @@ -679,7 +679,7 @@ make_hdr (new, a_out, data_start, bss_start, entry_address, a_name, new_name) */ ERROR0 ("can't build a COFF file from scratch yet"); #else - bzero (hdr, sizeof hdr); + bzero (&hdr, sizeof hdr); #endif }